.navbar {
    position: fixed !important;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(245, 245, 231, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 8px 0;
}

/* Navbar on Scroll - Enhanced Shadow */
.navbar.scrolled {
    background-color: rgba(245, 245, 231, 0.95);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.12);
}

/* Logo Styling */
.navbar-brand img {
    width: auto;
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Navigation Links */
.navbar-nav {
    align-items: center;
}

.nav-item {
    margin-left: 18px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Effect - Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #964B00;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: #964B00 !important;
    background-color: rgba(150, 75, 0, 0.08);
}

/* Active Link State */
.nav-link.active {
    color: #964B00 !important;
    font-weight: 600;
}

/* Contact Button Special Styling */
.contact-btn {
    background: linear-gradient(135deg, #964B00 0%, #7a3d00 100%);
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 25px;
    font-weight: 600;
    margin-left: 10px !important;
    box-shadow: 0 4px 12px rgba(150, 75, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-btn::after {
    display: none;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #7a3d00 0%, #964B00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(150, 75, 0, 0.4);
    color: white !important;
}

/* ========================================
   MOBILE TOGGLE BUTTON - FIXED
   ======================================== */

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 28px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.navbar-toggle .bar {
    background-color: #1a1a1a;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Toggle Animation */
.navbar-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========================================
   RESPONSIVE DESIGN - FIXED
   ======================================== */

/* Show toggle button at 1024px and below */
@media screen and (max-width: 1024px) {
    .navbar-toggle {
        display: flex !important;
    }

    /* Hide the navbar collapse by default */
    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(245, 245, 231, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: left 0.4s ease;
        overflow-y: auto;
        padding: 30px 0;
        display: block !important; /* Force display */
    }

    /* Show menu when active */
    .navbar-collapse.show {
        left: 0 !important;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
        display: flex !important; /* Force display */
    }

    .nav-item {
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 10px;
        display: block !important; /* Force display */
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px 20px !important;
        font-size: 18px;
        border-radius: 12px;
        display: block !important; /* Force display */
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background-color: rgba(150, 75, 0, 0.15);
    }

    .contact-btn {
        margin-left: 0 !important;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}

/* Desktop - Show navbar normally */
@media screen and (min-width: 1025px) {
    .navbar-toggle {
        display: none !important;
    }

    .navbar-collapse {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        padding: 0 !important;
    }

    .navbar-nav {
        flex-direction: row !important;
        display: flex !important;
    }

    .nav-item {
        display: inline-block !important;
    }
}

@media screen and (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
    }

    .navbar {
        padding: 6px 0;
    }

    .navbar-collapse {
        top: 60px;
        height: calc(100vh - 60px);
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-collapse.show .nav-item {
    animation: fadeInDown 0.4s ease forwards;
    opacity: 0;
}

.navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.1s; }
.navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.15s; }
.navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.2s; }
.navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.25s; }
.navbar-collapse.show .nav-item:nth-child(5) { animation-delay: 0.3s; }












































































/* Container styling */
#carouselId {
  padding: 1.25rem;
  border-radius: 1.25rem;
  position: relative;
}

/* Indicator pill track */
.carousel-pill-indicator {
  display: flex;
  justify-content: center;
}

.pill-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 220px;
  height: 32px;
  background-color: rgba(245, 245, 235, 0.06); /* subtle #F5F5EB */
  border-radius: 999px;
  padding: 3px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* Sliding active pill */
.pill-active {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc((100% - 6px) / 5);
  border-radius: 999px;
  background: linear-gradient(135deg, #964B00, #b46111);
  box-shadow: 0 6px 16px rgba(0,0,0,0.45);
  transition: transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1), 
              background 200ms ease;
}

/* Invisible clickable segments */
.pill-segment {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
  padding: 0;
  outline: none;
  transition: color 150ms ease;
}

/* Optional subtle feedback on hover / active */
.pill-segment:hover {
  background: radial-gradient(circle at center, rgba(245,245,235,0.12), transparent 70%);
}

.pill-segment:focus-visible {
  box-shadow: 0 0 0 2px rgba(245,245,235,0.6);
}

/* Active segment text indicator (small dot) */
.pill-segment::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 245, 235, 0.4);
  transition: background 180ms ease, transform 180ms ease;
}

.pill-segment.is-active::after {
  background: #F5F5EB;
  transform: scale(1.2);
}

/* Carousel images */
#carouselId .carousel-item img {
  object-fit: cover;
  max-height: 420px;
}

/* Controls on dark */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.8)) invert(1);
}





















/* ================= FOOTER ================= */

.Footer {
  background-color: #352513;   /* darker elegant brown */
  color: #ffffff;
  padding: 4rem 2rem;
}

/* Heading Section */
.Footer h2 {
  font-weight: 600;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 20px;
  margin-bottom: 40px;
}

/* Column Headings */
.Footer h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

/* Paragraph Text */
.Footer p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfcfcf;
}

/* Links */
.Footer a {
  color: #d8d8d8;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.Footer a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Icon Alignment */
.Footer svg {
  margin-right: 8px;
  vertical-align: middle;
}

.Phone,
.Gmail,
.Location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

/* Bottom Section */
.FooterBottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #bfbfbf;
}

/* Responsive */
@media (max-width: 768px) {
  .Footer {
    padding: 2.5rem 1.5rem;
    text-align: left;
  }

  .Footer h2 {
    font-size: 22px;
  }
}



